@font-face {
    font-family: font;
    src: url(../../Vazir/Vazir-Bold-FD.ttf);
}
html,body{
width: 100%;
height: auto;
float: left;
margin: 0;
padding: 0;   
direction: rtl;

}
body{
    background-color: #f7f7f75c !important;
}
body *{
    text-transform: capitalize;
    text-decoration: none;
    font-family: font;
    list-style: none;
}
body a{
    color: black;
    text-decoration: none;
}
.m-contact-form-sec{
    width: 100%;
    height: auto;
    float: left;
    box-sizing: border-box;
    padding: 1em 10%;
    margin-bottom: 3em;
}
.m-contact-contact{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    align-items: flex;
    flex-direction: column;
    box-sizing: border-box;
}
.m-contact-form{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-direction: column;
    padding: 1em;
    box-sizing: border-box;
    border-radius: 10px;
    /* border: 1px solid rgb(80 106 173 / 38%); */
    background-color: white;
    box-shadow: 0 0 5px 0 rgb(80 106 173 / 38%);
}
.m-contact-header{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-direction: column;
    padding-bottom: 1em;
    margin-bottom: 1.5em;
    border-bottom: 1px solid rgb(80 106 173 / 38%);

}
.m-contact-header h3{
    margin: 0;
    float: left;
    box-sizing: border-box;
    font-size: 25px;
}
.m-contact-header p{
    margin-bottom: 0;
    margin-top: 10px;
    color: rgba(0, 0, 0, 0.411);
    font-size: 14px;
}
.m-contact-box{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
}
.m-contact-box input:first-child{
    margin-left: 1em;
}
.m-contact-box{
    margin-bottom: 2em;
}
.m-contact-form :where(input,textarea){
    width: 100%;
    height: auto;
    float: left;
    background-color: transparent;
    border: 1px solid rgba(0,0,0,0.09);
    outline: none;
    padding: 0.6em 1em;
    box-sizing: border-box;
    font-size: 15px;
    border-radius: 5px;
}
.m-contact-form :where(input,textarea)::placeholder{
    color: rgba(0, 0, 0, 0.211);
}
.m-contact-form textarea{
    margin-bottom: 2em;
}
.m-send-btn{
    width: fit-content;
    float: left;
    border: 1.5px solid rgb(0, 94, 202);
    border-radius: 10px;
    background-color: rgb(0, 94, 202);
    color: white;
    padding: 0.5em 3em;
    transition: 0.4s;
    cursor: pointer;
    box-sizing: border-box;
    align-self: flex-end;
}
.m-send-btn:hover {
    color: rgb(0, 94, 202);
    background-color: rgb(231, 243, 255);
    transition: 0.4s;
}

@media (max-width: 650px) {
    .m-contact-box {
        flex-direction: column;
    }
    input:first-child {
        margin-left: 0;
        margin-bottom: 2em;
    }
    .m-pr-container{
        padding: 1em;
    }
    .m-contact-header h3 {
        font-size: 20px;
    }
    .m-contact-form textarea {
        height: 8em;
    }
    .m-send-btn {
        align-self: center;
    }
    .m-contact-form-sec{
        padding: 1em 5% !important;
    }
}